home *** CD-ROM | disk | FTP | other *** search
- program Ccfmgr29;
-
- uses
- Forms,
- Ufmgr29 in 'UFMGR29.PAS' {CCFileMgrForm},
- Drwsutl4 in 'DRWSUTL4.PAS',
- Drwsutl1 in 'DRWSUTL1.PAS',
- Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
- Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
- Ccprnmgr in 'CCPRNMGR.PAS' {CCPrintForm},
- Pprevun in 'PPREVUN.PAS' {PrintPreviewForm};
-
- {$R *.RES}
-
- begin
- Application.Title := 'CC File Center';
- Application.HelpFile := 'PRNTDLG.HLP';
- Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
- Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
- Application.CreateForm(TDestDDForm, DestDDForm);
- Application.CreateForm(TCCPrintForm, CCPrintForm);
- Application.Run;
- end.
-